Migrate entries to current Symposium manifest schema - #21
Merged
Conversation
The retired spellings this repo used no longer validate under current Symposium: `crates = [...]` / `crates:` frontmatter is now `depends-on`, and `[[skills]] source = "crate"` is now a `[[plugins]] source.cargo` chained reference to the crate that ships the skills. - dial9, error-battery-pack: crates -> depends-on; source = "crate" -> a chained reference. The dial9 skills actually ship in the dial9-viewer crate (not dial9), and error-battery-pack's ship in its own skills/; the references point at those. - rust: crates = ["*"] -> depends-on = ["*"]; source.path = "." unchanged. - assert-struct, toasty, formality-core: crates: -> depends-on:. Dropped the dead `activation: always` field (activation is decided by depends-on now; it was silently ignored). Verified end-to-end: with a workspace depending on anyhow/toasty/ assert-struct and this repo as a registry, `cargo agents sync` installs error-battery-pack's three skills (fetched from crates.io via the chained reference), the two rust skills, and the assert-struct/toasty standalone skills — while dial9 and formality-core correctly stay inactive. rtk/rtk.toml is left as-is: it is named rtk.toml (not SYMPOSIUM.toml), so it is not a live entry, and it wires an invasive PreToolUse Bash-rewrite hook. Renaming it to SYMPOSIUM.toml would make it a dormant plugin (no dependency gate) enabled by `cargo agents use rtk`; its cargo+git installation schema should be validated at that point.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Should be merged once symposium-dev/symposium#270 is